@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,wght@0,400;0,600;0,700;0,900;1,400;1,700&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: #F6F8F6;
  color: #1F2933;
  line-height: 1.6;
  overflow-x: hidden;
}


.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(246, 248, 246, .92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid #DCE8DC;
  padding: 0 5%;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all .25s cubic-bezier(.4, 0, .2, 1);
}

.navbar.scrolled {
  box-shadow: 0 2px 12px rgba(46, 125, 50, .08);
}

.nav-logo {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 26px;
  font-weight: 900;
  color: #059669;
  cursor: pointer;
  letter-spacing: 0;
  user-select: none;
}

.nav-logo span {
  color: #059669;
}

.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #3D4F5C;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 50px;
  transition: all .25s cubic-bezier(.4, 0, .2, 1);
  cursor: pointer;
}

.nav-links a:hover,
.nav-links a.active {
  color: #059669;
  background: #E8F5E9;
}

.nav-cta {
  background: linear-gradient(135deg, #059669, #059669);
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 50px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all .25s cubic-bezier(.4, 0, .2, 1);
  box-shadow: 0 4px 16px rgba(46, 125, 50, .3);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(46, 125, 50, .4);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: #1F2933;
  border-radius: 2px;
  transition: all .25s cubic-bezier(.4, 0, .2, 1);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: #FFFFFF;
  border-bottom: 1px solid #DCE8DC;
  padding: 16px 5%;
  z-index: 999;
  box-shadow: 0 8px 32px rgba(46, 125, 50, .12);
}

.mobile-menu.open {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 12px 16px;
  text-decoration: none;
  color: #3D4F5C;
  font-weight: 600;
  font-size: 15px;
  border-radius: 10px;
  transition: all .25s cubic-bezier(.4, 0, .2, 1);
  cursor: pointer;
}

.mobile-menu a:hover {
  background: #E8F5E9;
  color: #059669;
}


.container {
  max-width: 1100px;
  width: 90%;
  margin: 80px auto;
  text-align: center;
}

h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0;
  margin-bottom: 24px;
  color: #1F2933;
}

h1 em {
  font-style: italic;
  background: linear-gradient(135deg, #059669, #059669);
  -webkit-background-clip: text;
  background-clip: text; /* Standard property for compatibility */
  -webkit-text-fill-color: transparent;
}

.subtitle {
  font-size: 18px;
  color: #6B7E8A;
  max-width: 600px;
  margin: 0 auto 60px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

.card {
  background: #FFFFFF;
  border: 1px solid #DCE8DC;
  border-radius: 16px;
  padding: 40px 32px;
  box-shadow: 0 2px 12px rgba(46, 125, 50, .08);
  transition: all .25s cubic-bezier(.4, 0, .2, 1);
  text-align: center;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 32px rgba(46, 125, 50, .12);
}

.hiw-step {
  width: 44px;
  height: 44px;
  background: #059669;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  margin: 0 auto 24px;
}

.card h3 {
  font-size: 22px;
  color: #1F2933;
  margin-bottom: 12px;
  font-weight: 700;
}

.card p {
  color: #6B7E8A;
  font-size: 15px;
  line-height: 1.6;
}

.result-box {
  margin-bottom: 80px;
  background: #FFFFFF;
  padding: 50px 40px;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(46, 125, 50, .08);
  display: inline-block;
}

.result-box h2 {
  font-size: 28px;
  font-weight: 800;
  color: #1F2933;
  margin-bottom: 16px;
}

.result-box p {
  font-size: 19px;
  color: #3D4F5C;
  font-style: italic;
  max-width: 700px;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 100px;
}

#btnprimary {
  background: linear-gradient(135deg, #059669, #059669);
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(46, 125, 50, .3);
  transition: all .25s cubic-bezier(.4, 0, .2, 1);
  font-family: 'Plus Jakarta Sans', sans-serif;
}

#btnprimary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(46, 125, 50, .4);
}

#btnsecondary {
  background: #FFFFFF;
  color: #3D4F5C;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  border: 1px solid #DCE8DC;
  cursor: pointer;
  transition: all .25s cubic-bezier(.4, 0, .2, 1);
  font-family: 'Plus Jakarta Sans', sans-serif;
}

#btnsecondary:hover {
  background: #E8F5E9;
  color: #059669;
}


footer {
  background: #1F2933;
  color: #94A3B8;
  padding: 80px 5% 40px;
  text-align: left;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .nav-logo {
  color: #059669;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.75;
  color: #64748B;
  max-width: 230px;
  margin-bottom: 20px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #CBD5E1;
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: #64748B;
  text-decoration: none;
  font-size: 14px;
  transition: all .25s cubic-bezier(.4, 0, .2, 1);
}

.footer-col a:hover {
  color: #059669;
}

.newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.newsletter-form input {
  flex: 1;
  padding: 10px 16px;
  border-radius: 50px;
  border: 1px solid #334155;
  background: #1E293B;
  color: #CBD5E1;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  outline: none;
}

.newsletter-form button {
  padding: 10px 16px;
  border-radius: 50px;
  background: #059669;
  color: #fff;
  border: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.social-row {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #1E293B;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .25s cubic-bezier(.4, 0, .2, 1);
  color: #64748B;
  border: 1px solid #334155;
}

.social-btn:hover {
  background: #059669;
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid #1E293B;
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #475569;
}

.footer-bottom span {
  color: #059669;
  font-weight: 600;
}

@media (max-width: 992px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links, .navbar .nav-cta { display: none; }
  .hamburger { display: flex; }
  .cards { grid-template-columns: 1fr; }
  .buttons { flex-direction: column; align-items: center; }
  #btnprimary, #btnsecondary { width: 100%; max-width: 300px; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  h1 { font-size: 38px; }
  .result-box { padding: 30px 20px; }
}
